home *** CD-ROM | disk | FTP | other *** search
- property psp_mysprite, pp_displayloc, pi_nexttime
-
- on beginSprite me
- psp_mysprite = sprite(me.spriteNum)
- pp_displayloc = psp_mysprite.loc
- end
-
- on exitFrame me
- if the timer > pi_nexttime then
- if psp_mysprite.loc = pp_displayloc then
- pi_nexttime = the timer + 30
- psp_mysprite.loc = point(1000, 1000)
- else
- pi_nexttime = the timer + 60
- psp_mysprite.loc = pp_displayloc
- end if
- end if
- end
-
- on getPropertyDescriptionList me
- return [#myproperty: [#comment: "comment:", #format: #float, #range: [#min: 0, #max: 180], #default: 10]]
- end
-